home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PVDRIVER / SS24DRV.ZIP / SS24DRVB.ZIP / WIN.BAT < prev    next >
DOS Batch File  |  1992-04-24  |  996b  |  47 lines

  1. @echo off
  2. if "%1"=="" goto wrong
  3.  
  4. :good
  5. echo Copying Windows drivers to %1\SS24...
  6.  
  7. :check1
  8. if exist %1\SS24\SHARED\*.* goto do1
  9. md %1\SS24\SHARED
  10. :do1
  11. shared %1\SS24\SHARED
  12.  
  13. :check2
  14. if exist %1\SS24\WIN30DRV\*.* goto do2
  15. md %1\SS24\WIN30DRV
  16. :do2
  17. win30drv %1\SS24\WIN30DRV
  18.  
  19. :check3
  20. if exist %1\SS24\WIN31DRV\*.* goto do3
  21. md %1\SS24\WIN31DRV
  22. :do3
  23. win31drv %1\ss24\win31drv
  24.  
  25. :check4
  26. if exist %1\ss24\iconfix\*.* goto do4
  27. md %1\ss24\iconfix
  28. :do4
  29. iconfix %1\ss24\iconfix
  30.  
  31. :end
  32. %1\ss24\end.bat %1
  33.  
  34. :wrong
  35. cls
  36. echo  ******************************************************
  37. echo  *** This program requires DIAMOND INSTALL PROGRAM  ***
  38. echo  *** The install program is located on SpeedSTAR 24 ***
  39. echo  *** Driver and Utility Disk 1.                     ***
  40. echo  ***                                                ***
  41. echo  *** Use the GO.BAT file found on Disk 1 to begin.  ***
  42. echo  ******************************************************
  43. echo.
  44. echo.
  45. echo.
  46.  
  47.